cb9015efa6dbee610242b0f7731db38c1ab192aa,src/main/java/com/mixpanel/android/mpmetrics/InAppFragment.java,InAppFragment,onCreateView,#LayoutInflater#ViewGroup#Bundle#,169

Before Change


            final TextView titleView = (TextView) mInAppView.findViewById(R.id.com_mixpanel_android_notification_title);
            final ImageView notifImage = (ImageView) mInAppView.findViewById(R.id.com_mixpanel_android_notification_image);

            InAppNotification inApp = mDisplayState.getInAppNotification();

            titleView.setText(inApp.getTitle());
            notifImage.setImageBitmap(inApp.getImage());

After Change


            final TextView bodyTextView = (TextView) mInAppView.findViewById(R.id.com_mixpanel_android_notification_title);
            final ImageView notifImage = (ImageView) mInAppView.findViewById(R.id.com_mixpanel_android_notification_image);

            MiniInAppNotification inApp = (MiniInAppNotification) mDisplayState.getInAppNotification();

            bodyTextView.setText(inApp.getBody());
            bodyTextView.setTextColor(inApp.getBodyColor());